Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This release addresses several bugs that were identified in v0.10.0.
Bugfixes Addressed
Ignore terrain agreement errors
A new argument
terrain_agreement_ignore_error
was added to thecreate_ras_terrain
endpoint. It's default value is false, which will maintain the current functionality. When set to true, if an error is raised in the terrain agreement calculation step, the error will be logged and no terrain agreement database will be created. The endpoint will still respond with a"terrain_agreement"
key, but it will have an empty value.Handle river_reach names more generically
While improving the conflation logic in 0.10.0, we made an assumption that the river_reach identifier in a geometry file would follow the default HEC-RAS formatting. Some contractors do not follow this formatting, so we have updated the code to more generically store river_reach names instead of forcing the default RAS formatting.
Add Model Name to extract_submodel
A required arg,
model_name
has been added to theextract_submodel
endpoint. This enables the the user to specify the name of the model instead of inferring it from the model directory name which was not full proof.closes #326
closes #325
closes #327